home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / xbtx.lha / Source / Font.h < prev    next >
C/C++ Source or Header  |  1995-10-13  |  3KB  |  69 lines

  1. /*
  2. **    $Id: Font.h 1.4 1995/10/13 11:45:36 olsen Exp olsen $
  3. **
  4. **    :ts=8
  5. */
  6.  
  7. /*
  8.  * Copyright (c) 1992, 1993 Arno Augustin, Frank Hoering, University of
  9.  * Erlangen-Nuremberg, Germany.
  10.  * All rights reserved.
  11.  *
  12.  * Redistribution and use in source and binary forms, with or without
  13.  * modification, are permitted provided that the following conditions
  14.  * are met:
  15.  * 1. Redistributions of source code must retain the above copyright
  16.  *    notice, this list of conditions and the following disclaimer.
  17.  * 2. Redistributions in binary form must reproduce the above copyright
  18.  *    notice, this list of conditions and the following disclaimer in the
  19.  *    documentation and/or other materials provided with the distribution.
  20.  * 3. All advertising materials mentioning features or use of this software
  21.  *    must display the following acknowledgement:
  22.  *      This product includes software developed by the University of
  23.  *      Erlangen-Nuremberg, Germany.
  24.  * 4. Neither the name of the University nor the names of its contributors
  25.  *    may be used to endorse or promote products derived from this software
  26.  *    without specific prior written permission.
  27.  *
  28.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  29.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  30.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  31.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  32.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  33.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  34.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  35.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  36.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  37.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38.  *
  39.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  40.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  41.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  42.  *
  43.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  44.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  45.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  46.  */
  47.  
  48. #ifndef _FONT_H
  49. #define _FONT_H 1
  50.  
  51. #define FONT_WIDTH  12
  52. #define FONT_HEIGHT 12
  53. #define MAXSTRETCH   8    /* maximaler Streckungsfaktor fuer Original Font */
  54.  
  55. #define PRIM 0
  56. #define SUP2 1
  57. #define SUPP 2
  58. #define SUP3 3
  59. #define SUP1 4
  60. #define DRCS 5
  61.  
  62. #define G0 0
  63. #define G1 1
  64. #define G2 2
  65. #define G3 3
  66. #define L  4
  67.  
  68. #endif    // _FONT_H
  69.